home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2004 #9
/
Amiga Plus CD - 2004 - No. 09.iso
/
amigaplus
/
tools
/
amigaos4_only
/
ifxlite
/
imagefx3
/
rexx
/
scanfax.ifx
< prev
next >
Wrap
Text File
|
2004-08-03
|
1KB
|
65 lines
/*
* $VER: ScanFax 2.0.0 (8.6.93)
*
* Arexx program for the ImageFX image processing system.
* Written by Thomas Krehbiel
*
* Updated for ImageFX 2.0.
*
* Scan multiple monochrome pages from an Epson ES800C with a
* document feeder attachment, save as FAXX files for PhonePak.
* You must enable the document feeder before running this macro.
*
*/
OPTIONS RESULTS
RequestFile '"Output Fax File:"'
IF rc ~= 0 THEN EXIT
faxfile = result
RequestThree '"Fax Resolution:"' 'Normal' 'Fine' 'Cancel'
IF rc ~= 0 THEN EXIT
res = result
Menu Scanner
SetRender Foreign
IF rc ~= 0 THEN EXIT
Render Mode Hires Lace
Render Colors 2
Undo Off
Redraw Off
pagenum = 1
DO FOREVER
Message 'Scanning Page' pagenum
/* requires 2.0 */
Scanner DetailScan LENGTH 11 Mono Dpi 200 ADF
IF rc ~= 0 THEN LEAVE
IF res = 'Normal' THEN DO
Scale 100 50 PERCENT FAST
END
Render Go
SaveRenderedAs FAXX '"'faxfile'"' Keep res
pagenum = pagenum + 1
END
SaveRenderedAs FAXX '"'faxfile'"' Close
KillBuffer Force
Redraw On
Undo On
EXIT